home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / mm / mm-0.90 / help / READ.DIR / print.HLP < prev    next >
Encoding:
Text File  |  1990-12-18  |  1.5 KB  |  34 lines

  1. PRINT  -  print the current message
  2.  
  3. Usage:  PRINT  
  4.  
  5. The PRINT command sends the message to a printer, as determined by the 
  6.   MM variable PRINT-FILTER.  By default, it uses /usr/local/bin/print, 
  7.   which asks you what printer you want (and offers a list) unless you have
  8.   a printer defined in your .profile file.  Students can use CUCCA's
  9.   printers in the Int Affairs and Mudd micro labs (etc); see the lab
  10.   consultant for printer names and capabilities.
  11.  
  12. If you are using MS-Kermit and have a printer directly attached to
  13.   your PC, you can use a print command called pcprint.  Type
  14.   "help set print-filter" to see how to customize printing.
  15.  
  16. The prefix LITERAL will force printing of all header fields regardless of
  17.   any settings of SET DONT-PRINT-HEADERS and SET ONLY-PRINT-HEADERS.
  18.  
  19. Examples:
  20.     Read>print             #print the message
  21.     Read>literal print        #print the message with all header fields
  22.   
  23. PRINT is somewhat similar to LIST.  For example, you can print with the
  24.   LIST command by specifying a shell print command.  The following...
  25.       Read>list |"lpr -Piab1" 
  26.   ...uses the lpr command to print the message to the printer "iab1".  
  27.   The format is slightly different from the PRINT command.  You can also 
  28.   write your own program accepting standard input, and SET PRINT-FILTER 
  29.   to its name.  
  30.  
  31. For more help, type "help" and one of these topics:
  32.   literal   list   message-handling   set print-filter   
  33.   set dont-print-headers   set only-print-headers  
  34.